Lighten CI, trim Dependabot, fix release signing password - #13
Merged
Conversation
The signing key has no password, so set TAURI_SIGNING_PRIVATE_KEY_PASSWORD to an empty string directly (an unset value makes the signer hang in CI, and GitHub won't store an empty-valued secret). Only TAURI_SIGNING_PRIVATE_KEY needs to be a repo secret. (Lost from PR #1 — re-applied.) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
The Tauri compile is the expensive CI step, so move the Rust job to its own workflow gated on src-tauri/** changes — frontend-only PRs no longer trigger a ~5-min backend build. Drop the heavy (non-blocking) clippy step; keep fmt + cargo test. Remove the npm ecosystem from Dependabot (it can't update bun.lock, so its PRs always broke frozen install) and slow the remaining cargo/actions updates to monthly. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to keep GitHub Actions light and fix two issues found after merging #1.
so
TAURI_SIGNING_PRIVATE_KEY_PASSWORDis now set to "" directly instead of asecret. Only
TAURI_SIGNING_PRIVATE_KEYneeds to be a repo secret.bun.lock,so its PRs always failed
bun install --frozen-lockfile(verified locally: aprettier patch bump alone breaks frozen install). Kept cargo + github-actions,
now monthly.
rust.ymlgated onsrc-tauri/**changes, so frontend-only PRs skip the ~5-min backend build.Dropped the non-blocking clippy step; kept fmt +
cargo test --lib.